home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / fonts / simple-qfont-demo / simple-qfont-demo.cpp.z / simple-qfont-demo.cpp
Encoding:
C/C++ Source or Header  |  2002-04-08  |  341 b   |  16 lines

  1. /* $Id$ */
  2.  
  3. #include "viewer.h"
  4.  
  5. #include <qapplication.h>
  6.  
  7. int main( int argc, char **argv )
  8. {
  9.     QApplication app( argc, argv );
  10.     Viewer * textViewer = new Viewer();
  11.     textViewer->setCaption( "Qt Example - Simple QFont Demo" );
  12.     app.setMainWidget( textViewer );
  13.     textViewer->show();
  14.     return app.exec();
  15. }                  
  16.